home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / stdio / sprintf.c < prev    next >
C/C++ Source or Header  |  1990-10-19  |  3KB  |  108 lines

  1. /* 
  2.  * sprintf.c --
  3.  *
  4.  *    Source code for the "sprintf" library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/stdio/RCS/sprintf.c,v 1.10 90/10/19 15:23:05 kupfer Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include <varargs.h>
  22. #include <cfuncproto.h>
  23. #include <sprite.h>        /* for Boolean typedef */
  24.  
  25. #ifndef lint
  26.  
  27. /* 
  28.  * Forward declarations:
  29.  */
  30. static void StringWriteProc _ARGS_((FILE *stream, Boolean flush));
  31.  
  32.  
  33. /*
  34.  *----------------------------------------------------------------------
  35.  *
  36.  * StringWriteProc --
  37.  *
  38.  *    This procedure is invoked when the "buffer" for the string
  39.  *    fills up.  Just give the string more space.
  40.  *
  41.  * Results:
  42.  *    None.
  43.  *
  44.  * Side effects:
  45.  *    The stream's "buffer" gets enlarged.
  46.  *
  47.  *----------------------------------------------------------------------
  48.  */
  49.  
  50. static void
  51. StringWriteProc(stream, flush)
  52.     register FILE *stream;
  53.     Boolean flush;        /* ignored */
  54. {
  55.     stream->writeCount = 5000;
  56. }
  57.  
  58. /*
  59.  *----------------------------------------------------------------------
  60.  *
  61.  * sprintf --
  62.  *
  63.  *    Format and print one or more values, placing the output into
  64.  *    a string.  See the manual page for details of how the format
  65.  *    string is interpreted.
  66.  *
  67.  * Results:
  68.  *    The return value is a pointer to string, which has been
  69.  *    overwritten with formatted information.
  70.  *
  71.  * Side effects:
  72.  *    None.
  73.  *
  74.  *----------------------------------------------------------------------
  75.  */
  76.  
  77. char *
  78. sprintf(va_alist)
  79.     va_dcl            /* char *string, then char *format, then any
  80.                  * number of additional values to be printed
  81.                  * in string under control of format. */
  82. {
  83.     char *string;
  84.     char *format;
  85.     FILE stream;
  86.     va_list args;
  87.  
  88.     va_start(args);
  89.     string = va_arg(args, char *);
  90.     format = va_arg(args, char *);
  91.     Stdio_Setup(&stream, 0, 1, (unsigned char *)string, 5000, (void (*)()) 0,
  92.         StringWriteProc, (int (*)()) 0, (ClientData) 0);
  93.     (void) vfprintf(&stream, format, args);
  94.     putc(0, &stream);
  95.     return string;
  96. }
  97. #else
  98. /* VARARGS2 */
  99. /* ARGSUSED */
  100. char *
  101. sprintf(string, format)
  102.     char *string;
  103.     char *format;
  104. {
  105.     return string;
  106. }
  107. #endif lint
  108.